home *** CD-ROM | disk | FTP | other *** search
/ Gigantic Games 2 / Gigantic Games 2.iso / pc / _a_ / attacks / sources / boards.def < prev    next >
Text File  |  1994-12-23  |  551b  |  23 lines

  1. DEFINITION MODULE boards;
  2.  
  3. (*   This module is a list of boards for the game.  After thinking about  *)
  4. (* it for a while, I decided to use a list of setups rather than have the *)
  5. (* possibilty of a random setup that was impossible to play.              *)
  6.  
  7. FROM header
  8.   IMPORT   boardtype;
  9.  
  10.  
  11. CONST
  12.   numboards = 4;                (* This is the number of setups I have    *)
  13.  
  14.  
  15. VAR
  16.   setup0 : boardtype;           (* This one is a blank board   *)
  17.   setup1 : boardtype;
  18.   setup2 : boardtype;
  19.   setup3 : boardtype;
  20.   setup4 : boardtype;
  21.  
  22. END boards.
  23.